home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / mysteryc.arj / EXH38.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-07  |  156 b   |  13 lines

  1. #include <stdio.h>
  2. main()
  3.  
  4. {
  5.  
  6.   int true, false;
  7.  
  8.   true = ( 5==5);
  9.   false = (5==10);
  10.   printf("true = %d; false = %d \n", true, false);
  11.   }
  12.  
  13.